home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / chap05 / howto05 / ccfmgr29.dpr next >
Encoding:
Text File  |  1996-03-04  |  681 b   |  24 lines

  1. program Ccfmgr29;
  2.  
  3. uses
  4.   Forms,
  5.   Ufmgr29 in 'UFMGR29.PAS' {CCFileMgrForm},
  6.   Drwsutl4 in 'DRWSUTL4.PAS',
  7.   Drwsutl1 in 'DRWSUTL1.PAS',
  8.   Cfmpfun in 'CFMPFUN.PAS' {CCFMPropsForm},
  9.   Dddfunit in 'DDDFUNIT.PAS' {DestDDForm},
  10.   Ccprnmgr in 'CCPRNMGR.PAS' {CCPrintForm},
  11.   Pprevun in 'PPREVUN.PAS' {PrintPreviewForm};
  12.  
  13. {$R *.RES}
  14.  
  15. begin
  16.   Application.Title := 'CC File Center';
  17.   Application.HelpFile := 'PRNTDLG.HLP';
  18.   Application.CreateForm(TCCFileMgrForm, CCFileMgrForm);
  19.   Application.CreateForm(TCCFMPropsForm, CCFMPropsForm);
  20.   Application.CreateForm(TDestDDForm, DestDDForm);
  21.   Application.CreateForm(TCCPrintForm, CCPrintForm);
  22.   Application.Run;
  23. end.
  24.